var vendor/golang.org/x/text/unicode/norm.formTable

16 uses

	vendor/golang.org/x/text/unicode/norm (current package)
		composition.go#L115: 	rb.f = *formTable[f]
		composition.go#L122: 	rb.f = *formTable[f]
		forminfo.go#L61: var formTable = []*formInfo{{
		normalize.go#L46: 	ft := formTable[f]
		normalize.go#L60: 	ft := formTable[f]
		normalize.go#L74: 	ft := formTable[f]
		normalize.go#L113: 	ft := formTable[f]
		normalize.go#L200: 	ft := formTable[f]
		normalize.go#L267: 	n, _ := formTable[f].quickSpan(inputBytes(b), 0, len(b), true)
		normalize.go#L274: 	n, ok := formTable[f].quickSpan(inputBytes(b), 0, len(b), atEOF)
		normalize.go#L288: 	n, ok := formTable[f].quickSpan(inputString(s), 0, len(s), atEOF)
		normalize.go#L359: 	n, _ := formTable[f].quickSpan(inputString(s), 0, len(s), true)
		normalize.go#L374: 	fd := formTable[f]
		normalize.go#L424: 	fd := formTable[f]
		normalize.go#L458: 	return lastBoundary(formTable[f], b)
		transform.go#L29: 	i, ok := formTable[f].quickSpan(inputBytes(b), 0, len(b), eof)